/* footer.css - Shared footer styles for all pages */
.footer {
    width: 100%;
    background-color: #003399 !important;
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 50px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.4fr 1.2fr;
    gap: 15px;
    margin-bottom: 40px;
}

.footer-logo,
.footer-links,
.footer-shop,
.footer-contact {
    text-align: left;
}

.footer-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-logo-img {
    width: 220px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-links h4,
.footer-shop h4,
.footer-contact h4 {
    font-family: 'Baloo 2', cursive;
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #ffffffb2;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.shop-description {
    color: #ffffffb2;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 260px;
}

.shop-availability {
    color: #ffffffb2;
    font-size: 15px;
    margin-top: 10px;
}

.shop-availability i {
    color: #ffffff;
    margin-right: 8px;
    font-size: 16px;
}

.footer-contact p {
    color: #ffffffb2;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.footer-contact i {
    color: #ffffff;
    width: 22px;
    font-size: 17px;
}

.social-links {
    display: flex;
    gap: 22px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-links a {
    color: #ffffff !important;
    font-size: 26px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: #ffffff;
    transform: translateY(-3px);
    opacity: 0.8;
}

.fa-twitter {
    color: #ffffff !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 16px;
    opacity: 0.8;
    color: #ffffff;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.developer {
    color: #ffffff;
    font-weight: 600;
}

/* Desktop media queries */
@media (max-width: 1100px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .footer-contact p {
        white-space: normal;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile styles - keep these in mobile.css */